From 2fc4655033ffe6231c80f53bea6124fa69e4dfce Mon Sep 17 00:00:00 2001 From: "mafetter@seana.research.intel-research.net" Date: Tue, 8 Nov 2005 11:31:16 +0100 Subject: [PATCH] Fix vncviewer spawning so it actually works. How did this ever work for other people? --- tools/python/xen/xm/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xm/create.py b/tools/python/xen/xm/create.py index a290b6347a..36d9b5ad2c 100644 --- a/tools/python/xen/xm/create.py +++ b/tools/python/xen/xm/create.py @@ -756,7 +756,7 @@ def choose_vnc_display(): vncpid = None def spawn_vnc(display): - vncargs = (["vncviewer" + "-log", "*:stdout:0", + vncargs = (["vncviewer", "-log", "*:stdout:0", "-listen", "%d" % (VNC_BASE_PORT + display) ]) global vncpid vncpid = os.spawnvp(os.P_NOWAIT, "vncviewer", vncargs) -- 2.30.2